German ASR Pipeline Deployment#

In this notebook, we are going through the steps to deploy a German ASR pipeline into production.

Important note: This notebook should be run from the host OS, where it can access the docker command. NVIDIA GPU driver, docker and Nvidia-docker should be pre-installed. For NVIDIA GPU driver, See instructions at https://docs.nvidia.com/datacenter/tesla/tesla-installation-notes/index.html. For Nvidia-docker, see https://docs.nvidia.com/datacenter/cloud-native/kubernetes/install-k8s.html#step-1-install-a-container-engine.

Model checklist#

This tutorial assumes that you have the following models ready:

  • An acoustic model

  • A language model (optional)

  • An inverse text normalization model (optional)

  • A punctuation and capitalization model (optional)

Pre requisite#

  • Make sure you have access to NGC to download models if you wish to use pre-trained models. Set up the NGC CLI tool with your NGC API key.

  • Download Riva quickstart scripts to a local directory <RIVA_QUICKSTART_DIR>.

  • Prepare a local folder <RIVA_MODEL_DIR> to put/download raw Riva models to.

  • Prepare a local folder <RIVA_REPO_DIR> for Riva optimized and deployed models.

# Download Riva quickstart
RIVA_VERSION = "2.6.0"

!ngc registry resource download-version nvidia/riva/riva_quickstart:$RIVA_VERSION
Downloaded 51.49 KB in 3s, Download speed: 17.16 KB/s               
--------------------------------------------------------------------------------
   Transfer id: riva_quickstart_v2.6.0
   Download status: Completed
   Downloaded local path: /home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_quickstart_v2.6.0-1
   Total files downloaded: 18
   Total downloaded size: 51.49 KB
   Started at: 2023-01-15 17:19:38.791731
   Completed at: 2023-01-15 17:19:41.796980
   Duration taken: 3s
--------------------------------------------------------------------------------
import os

CURRENT_DIR = os.getcwd()

# Note: replace this directory with the actual Riva quickstart folder
RIVA_QUICKSTART_DIR = CURRENT_DIR + f'/riva_quickstart_v{RIVA_VERSION}'

RIVA_MODEL_DIR = CURRENT_DIR + '/riva_model_dir'
RIVA_REPO_DIR = CURRENT_DIR + '/riva_repo_dir'

!mkdir $RIVA_MODEL_DIR
!mkdir $RIVA_REPO_DIR

print("Riva model dir: ", RIVA_MODEL_DIR)
print("Riva repo dir: ",RIVA_REPO_DIR)
mkdir: cannot create directory ‘/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir’: File exists
mkdir: cannot create directory ‘/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_repo_dir’: File exists
Riva model dir:  /home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir
Riva repo dir:  /home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_repo_dir

The next step is to point the riva_model_loc to the local directory RIVA_REPO_DIR prepared in the previous step. By default, riva_model_loc point to a docker volume.

To do this, open the Riva config file config.sh in the RIVA_QUICKSTART_DIR, find the line with riva_model_loc and point it to the absolute path of the RIVA_REPO_DIR directory, as printed out in the previous step.

!head -n 100 $RIVA_QUICKSTART_DIR/config.sh |grep riva_model_loc
# RMIR ($riva_model_loc/rmir)
# downloaded to $riva_model_loc/rmir by `riva_init.sh`
# may also be copied manually to this location $(riva_model_loc/rmir).
# Models ($riva_model_loc/models)
# During the riva_init process, the RMIR files in $riva_model_loc/rmir
# stored in $riva_model_loc/models. The riva server exclusively uses these
riva_model_loc="/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_repo_dir"
    riva_model_loc="`pwd`/model_repository"

Bringing models#

BYO models#

If bringing your own models, refer to the training section of this guide for details on how to train your own custom models. Put these models into RIVA_MODEL_DIR.

Download Pre-trained models#

Alternatively, you can deploy pre-trained models. All Riva German assets are published on NGC (including .nemo, .riva, .tlt and .rmir assets). You can use these models as starting points for your development or for deployment as-is.

Acoustic models#

!cd $RIVA_MODEL_DIR && ngc registry model download-version "nvidia/nemo/stt_de_citrinet_1024:1.5.0"
Downloaded 507.77 MB in 12s, Download speed: 42.24 MB/s               
--------------------------------------------------------------------------------
   Transfer id: stt_de_citrinet_1024_v1.5.0
   Download status: Completed
   Downloaded local path: /home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir/stt_de_citrinet_1024_v1.5.0-1
   Total files downloaded: 1
   Total downloaded size: 507.77 MB
   Started at: 2023-01-15 17:21:11.550862
   Completed at: 2023-01-15 17:21:23.566598
   Duration taken: 12s
--------------------------------------------------------------------------------

Inverse text normalization models#

!cd $RIVA_MODEL_DIR && ngc registry model download-version "nvidia/tao/inverse_normalization_de_de:deployable_v1.0"
Downloaded 555.45 KB in 3s, Download speed: 185.15 KB/s               
--------------------------------------------------------------------------------
   Transfer id: inverse_normalization_de_de_vdeployable_v1.0
   Download status: Completed
   Downloaded local path: /home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir/inverse_normalization_de_de_vdeployable_v1-1.0
   Total files downloaded: 2
   Total downloaded size: 555.45 KB
   Started at: 2023-01-15 17:21:26.321069
   Completed at: 2023-01-15 17:21:29.325625
   Duration taken: 3s
--------------------------------------------------------------------------------

Language model#

!cd $RIVA_MODEL_DIR && ngc registry model download-version "nvidia/tao/speechtotext_de_de_lm:deployable_v2.0"
Downloaded 1.16 GB in 31s, Download speed: 38.31 MB/s                 
--------------------------------------------------------------------------------
   Transfer id: speechtotext_de_de_lm_vdeployable_v2.0
   Download status: Completed
   Downloaded local path: /home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir/speechtotext_de_de_lm_vdeployable_v2-1.0
   Total files downloaded: 2
   Total downloaded size: 1.16 GB
   Started at: 2023-01-15 17:21:31.562413
   Completed at: 2023-01-15 17:22:02.600990
   Duration taken: 31s
--------------------------------------------------------------------------------

Punctuation and capitalization model#

!cd $RIVA_MODEL_DIR &&  ngc registry model download-version "nvidia/tao/punctuationcapitalization_de_de_bert_base:deployable_v1.0"
Downloaded 628.68 MB in 16s, Download speed: 39.24 MB/s               
--------------------------------------------------------------------------------
   Transfer id: punctuationcapitalization_de_de_bert_base_vdeployable_v1.0
   Download status: Completed
   Downloaded local path: /home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir/punctuationcapitalization_de_de_bert_base_vdeployable_v1-1.0
   Total files downloaded: 1
   Total downloaded size: 628.68 MB
   Started at: 2023-01-15 17:22:05.172372
   Completed at: 2023-01-15 17:22:21.193470
   Duration taken: 16s
--------------------------------------------------------------------------------

Preparing Models#

Nemo to Riva conversion#

First, we prepare a small script for NeMo model conversion to Riva. This script first installs the nemo2riva tool which is distributed with the Riva quickstart.

!ls $RIVA_QUICKSTART_DIR | grep nemo2riva
nemo2riva-2.6.0-py3-none-any.whl

In the below script, replace pip3 install nnemo2riva-2.6.0-py3-none-any.whl with the actual nemo2riva version in the above step.

%%writefile nemo_conversion.sh
cd /riva_quickstart
pip3 install nvidia-pyindex
pip3 install nemo2riva-2.6.0-py3-none-any.whl

# Converting acoustic model in Nemo format to Riva format.
nemo2riva --out /models/stt_de_citrinet_1024_v1.5.0/stt_de_citrinet_1024.riva /models/stt_de_citrinet_1024_v1.5.0/stt_de_citrinet_1024.nemo --max-dim=100000
Writing nemo_conversion.sh
!mv nemo_conversion.sh  $RIVA_QUICKSTART_DIR
!chmod -R 777 $RIVA_QUICKSTART_DIR
!chmod -R 777 $RIVA_MODEL_DIR
!chmod -R 777 $RIVA_REPO_DIR
chmod: changing permissions of '/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir/de_punctuation_1_0.rmir': Operation not permitted
chmod: changing permissions of '/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir/stt_de_citrinet_1024_v1.5.0/stt_de_citrinet_1024.riva': Operation not permitted
chmod: changing permissions of '/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_model_dir/citrinet-1024-de-DE-asr-offline.rmir': Operation not permitted
chmod: changing permissions of '/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_repo_dir/models': Operation not permitted
chmod: changing permissions of '/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_repo_dir/models/riva-trt-citrinet-1024-de-DE-asr-offline-am-streaming-offline': Operation not permitted
chmod: changing permissions of '/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_repo_dir/models/riva-trt-citrinet-1024-de-DE-asr-offline-am-streaming-offline/1': Operation not permitted
chmod: changing permissions of '/home/vinhn/riva-tutorials/New-language-adaptation/German/deployment/riva_repo_dir/models/riva-trt-citrinet-1024-de-DE-asr-offline-am-streaming-offline/1/model_graph.onnx': Operation not permitted
!docker run --gpus=all --rm -v $RIVA_MODEL_DIR/:/models -v $RIVA_QUICKSTART_DIR:/riva_quickstart nvcr.io/nvidia/nemo:22.01 -- /riva_quickstart/nemo_conversion.sh
Unable to find image 'nvcr.io/nvidia/nemo:22.01' locally
docker: Error response from daemon: Head "https://nvcr.io/v2/nvidia/nemo/manifests/22.01": unauthorized: authentication required.
See 'docker run --help'.

Making service#

The ServiceMaker container is responsible for preparing models for deployment.

Build and deploy an offline ASR pipeline#

The ASR pipeline including the acoustic model, language model and inverse text normalization model is built as follows:

!docker run --gpus all --rm \
     -v $RIVA_MODEL_DIR:/servicemaker-dev \
     -v $RIVA_REPO_DIR:/data \
     nvcr.io/nvidia/riva/riva-speech:$RIVA_VERSION-servicemaker \
     -- \
     riva-build speech_recognition -f \
     /servicemaker-dev/citrinet-1024-de-DE-asr-offline.rmir /servicemaker-dev/stt_de_citrinet_1024_v1.5.0/stt_de_citrinet_1024.riva \
     --offline \
     --name=citrinet-1024-de-DE-asr-offline \
     --ms_per_timestep=80 \
     --featurizer.use_utterance_norm_params=False \
     --featurizer.precalc_norm_time_steps=0 \
     --featurizer.precalc_norm_params=False \
     --chunk_size=900 \
     --left_padding_size=0. \
     --right_padding_size=0. \
     --decoder_type=flashlight \
     --decoding_language_model_binary=/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/riva_de_asr_set_2.0_4gram.binary \
     --decoding_vocab=/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/dict_vocab.txt \
     --flashlight_decoder.lm_weight=0.2 \
     --flashlight_decoder.word_insertion_score=0.2 \
     --flashlight_decoder.beam_threshold=20. \
     --wfst_tokenizer_model=/servicemaker-dev/inverse_normalization_de_de_vdeployable_v1.0/tokenize_and_classify.far \
     --wfst_verbalizer_model=/servicemaker-dev/inverse_normalization_de_de_vdeployable_v1.0/verbalize.far \
     --language_code=de-DE 
/bin/bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)

==========================
=== Riva Speech Skills ===
==========================

NVIDIA Release  (build 45250447)
Copyright (c) 2016-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

Copyright (c) 2018-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

https://developer.nvidia.com/tensorrt

Various files include modifications (c) NVIDIA CORPORATION & AFFILIATES.  All rights reserved.

This container image and its contents are governed by the NVIDIA Deep Learning Container License.
By pulling and using the container, you accept the terms and conditions of this license:
https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license

To install Python sample dependencies, run /opt/tensorrt/python/python_setup.sh

To install the open-source samples corresponding to this TensorRT release version
run /opt/tensorrt/install_opensource.sh.  To build the open source parsers,
plugins, and samples for current top-of-tree on master or a different branch,
run /opt/tensorrt/install_opensource.sh -b <branch>
See https://github.com/NVIDIA/TensorRT for more information.

[NeMo W 2023-01-16 01:22:24 optimizers:55] Apex was not found. Using the lamb or fused_adam optimizer will error out.
2023-01-16 01:22:30,532 [INFO] Packing binaries for nn/ONNX : {'onnx': ('nemo.collections.asr.models.ctc_bpe_models.EncDecCTCModelBPE', 'model_graph.onnx')}
2023-01-16 01:22:30,532 [INFO] Copying onnx:model_graph.onnx -> nn:nn-model_graph.onnx
2023-01-16 01:22:31,513 [INFO] Packing binaries for lm_decoder/ONNX : {'vocab_file': '/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt', 'decoding_language_model_binary': '/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/riva_de_asr_set_2.0_4gram.binary', 'decoding_vocab': '/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/dict_vocab.txt', 'tokenizer_model': ('nemo.collections.asr.models.ctc_bpe_models.EncDecCTCModelBPE', '292b782b41e44abd82cf8a2390b3b4ed_tokenizer.model')}
2023-01-16 01:22:31,513 [INFO] Copying vocab_file:/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt -> lm_decoder:lm_decoder-riva_decoder_vocabulary.txt
2023-01-16 01:22:31,513 [INFO] Copying decoding_language_model_binary:/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/riva_de_asr_set_2.0_4gram.binary -> lm_decoder:lm_decoder-riva_de_asr_set_2.0_4gram.binary
2023-01-16 01:22:40,965 [INFO] Copying decoding_vocab:/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/dict_vocab.txt -> lm_decoder:lm_decoder-dict_vocab.txt
2023-01-16 01:22:41,316 [INFO] Copying tokenizer_model:292b782b41e44abd82cf8a2390b3b4ed_tokenizer.model -> lm_decoder:lm_decoder-292b782b41e44abd82cf8a2390b3b4ed_tokenizer.model
2023-01-16 01:22:41,318 [INFO] Packing binaries for rescorer/ONNX : {'vocab_file': '/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt'}
2023-01-16 01:22:41,318 [INFO] Copying vocab_file:/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt -> rescorer:rescorer-riva_decoder_vocabulary.txt
2023-01-16 01:22:41,318 [INFO] Packing binaries for endpointing/ONNX : {'vocab_file': '/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt'}
2023-01-16 01:22:41,318 [INFO] Copying vocab_file:/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt -> endpointing:endpointing-riva_decoder_vocabulary.txt
2023-01-16 01:22:41,318 [INFO] Packing binaries for vad/ONNX : {}
2023-01-16 01:22:41,318 [INFO] Packing binaries for vad_nn/ONNX : {}
2023-01-16 01:22:41,319 [INFO] Packing binaries for citrinet-1024-de-DE-asr-offline/ONNX : {'wfst_tokenizer': '/servicemaker-dev/inverse_normalization_de_de_vdeployable_v1.0/tokenize_and_classify.far', 'wfst_verbalizer': '/servicemaker-dev/inverse_normalization_de_de_vdeployable_v1.0/verbalize.far'}
2023-01-16 01:22:41,319 [INFO] Copying wfst_tokenizer:/servicemaker-dev/inverse_normalization_de_de_vdeployable_v1.0/tokenize_and_classify.far -> citrinet-1024-de-DE-asr-offline:citrinet-1024-de-DE-asr-offline-tokenize_and_classify.far
2023-01-16 01:22:41,338 [INFO] Copying wfst_verbalizer:/servicemaker-dev/inverse_normalization_de_de_vdeployable_v1.0/verbalize.far -> citrinet-1024-de-DE-asr-offline:citrinet-1024-de-DE-asr-offline-verbalize.far
2023-01-16 01:22:41,340 [INFO] Saving to /servicemaker-dev/citrinet-1024-de-DE-asr-offline.rmir

The riva-build command takes in an acoustic model in .riva format, the inverse text normalization models in .far format, and a n-gram binary language model file.

Note: See Riva documentation for build commands for streaming ASR service.

Once the built process succeeded, we can deploy the ASR pipeline.

!docker run --gpus all --rm \
     -v $RIVA_MODEL_DIR:/servicemaker-dev \
     -v $RIVA_REPO_DIR:/data \
     nvcr.io/nvidia/riva/riva-speech:$RIVA_VERSION-servicemaker \
     -- \
     riva-deploy -f /servicemaker-dev/citrinet-1024-de-DE-asr-offline.rmir /data/models
/bin/bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)

==========================
=== Riva Speech Skills ===
==========================

NVIDIA Release  (build 45250447)
Copyright (c) 2016-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

Copyright (c) 2018-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

https://developer.nvidia.com/tensorrt

Various files include modifications (c) NVIDIA CORPORATION & AFFILIATES.  All rights reserved.

This container image and its contents are governed by the NVIDIA Deep Learning Container License.
By pulling and using the container, you accept the terms and conditions of this license:
https://developer.nvidia.com/ngc/nvidia-deep-learning-container-license

To install Python sample dependencies, run /opt/tensorrt/python/python_setup.sh

To install the open-source samples corresponding to this TensorRT release version
run /opt/tensorrt/install_opensource.sh.  To build the open source parsers,
plugins, and samples for current top-of-tree on master or a different branch,
run /opt/tensorrt/install_opensource.sh -b <branch>
See https://github.com/NVIDIA/TensorRT for more information.

[NeMo W 2023-01-16 01:24:43 optimizers:55] Apex was not found. Using the lamb or fused_adam optimizer will error out.
2023-01-16 01:24:43,250 [INFO] Writing Riva model repository to '/data/models'...
2023-01-16 01:24:43,250 [INFO] The riva model repo target directory is /data/models
2023-01-16 01:25:16,711 [INFO] Using tensorrt with fp16
2023-01-16 01:25:16,712 [INFO] Extract_binaries for nn -> /data/models/riva-trt-citrinet-1024-de-DE-asr-offline-am-streaming-offline/1
2023-01-16 01:25:16,712 [INFO] extracting {'onnx': ('nemo.collections.asr.models.ctc_bpe_models.EncDecCTCModelBPE', 'model_graph.onnx')} -> /data/models/riva-trt-citrinet-1024-de-DE-asr-offline-am-streaming-offline/1
2023-01-16 01:25:17,731 [INFO] Printing copied artifacts:
2023-01-16 01:25:17,731 [INFO] {'onnx': '/data/models/riva-trt-citrinet-1024-de-DE-asr-offline-am-streaming-offline/1/model_graph.onnx'}
2023-01-16 01:25:17,731 [INFO] Building TRT engine from ONNX file
[01/16/2023-01:25:19] [TRT] [W] parsers/onnx/onnx2trt_utils.cpp:364: Your ONNX model has been generated with INT64 weights, while TensorRT does not natively support INT64. Attempting to cast down to INT32.
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:19] [TRT] [W] Output type must be INT32 for shape outputs
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 10 time: 8.2777e-05
[0x402000000]:4294967296 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 9 time: 0.00240631
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 11 time: 3.1469e-05
[0x402000000]:4294967296 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 9 time: 0.00240631
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 12 time: 3.0898e-05
[0x402000000]:4294967296 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 9 time: 0.00240631
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 13 time: 2.8775e-05
[0x402000000]:4294967296 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 9 time: 0.00240631
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 16 time: 6.9602e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 17 time: 5.5035e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 18 time: 5.6787e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 19 time: 0.00382228
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 20 time: 6.9171e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 21 time: 5.294e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 22 time: 5.5115e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:26] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 23 time: 5.0826e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:26] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:26] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 24 time: 6.9952e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 25 time: 3.161e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 26 time: 3.1339e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 27 time: 2.8814e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 28 time: 3.161e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 29 time: 2.8253e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 30 time: 3.153e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 31 time: 2.8625e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 32 time: 3.184e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 33 time: 2.9105e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 34 time: 3.1169e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 35 time: 2.8254e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 36 time: 3.0638e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 37 time: 2.8283e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 38 time: 3.4526e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 39 time: 2.7883e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 40 time: 7.391e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 41 time: 3.3744e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 42 time: 3.5117e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 43 time: 3.18e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 44 time: 4.3693e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 45 time: 4.1829e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 46 time: 3.5287e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:27] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 47 time: 3.2091e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:27] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:27] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 48 time: 7.0304e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 49 time: 5.4794e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 50 time: 7.912e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 51 time: 6.5815e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 52 time: 6.5183e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 53 time: 6.6476e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 54 time: 0.00218578
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 55 time: 5.4373e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 56 time: 5.7148e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 57 time: 5.288e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 58 time: 5.3401e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 59 time: 4.8993e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 60 time: 5.3241e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 61 time: 5.0556e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 62 time: 5.4023e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 63 time: 5.3271e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 64 time: 5.4544e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 65 time: 4.9113e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 66 time: 5.2039e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 67 time: 4.9203e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 68 time: 5.7019e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 69 time: 5.1708e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 70 time: 5.5395e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 71 time: 5.286e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 72 time: 5.6907e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 73 time: 5.0185e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 74 time: 5.5725e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 75 time: 4.9855e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 76 time: 5.6277e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 77 time: 5.0335e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 78 time: 5.319e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 79 time: 5.4113e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 80 time: 5.4734e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 81 time: 5.0846e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 82 time: 5.293e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 83 time: 4.9895e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 84 time: 5.6697e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 85 time: 4.9664e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 86 time: 5.4183e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 87 time: 5.3852e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 88 time: 5.6668e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 89 time: 5.1869e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 90 time: 5.4373e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 91 time: 5.0375e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 92 time: 5.4644e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 93 time: 5.0075e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 94 time: 5.3542e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 95 time: 5.5235e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 96 time: 0.001986
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 97 time: 5.0886e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 98 time: 5.2921e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 99 time: 5.4043e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 100 time: 5.4152e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 101 time: 0.00450634
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 102 time: 5.4323e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 103 time: 4.8783e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 104 time: 5.5195e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 105 time: 4.9975e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 106 time: 5.3161e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:28] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:28] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 107 time: 5.3662e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:28] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 196 time: 0.000113916
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 197 time: 5.7889e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 198 time: 6.0114e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 199 time: 6.1236e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 200 time: 6.4763e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 201 time: 6.1837e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 202 time: 6.7317e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 203 time: 5.8461e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 204 time: 6.4212e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 205 time: 5.9102e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 206 time: 6.4552e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 207 time: 5.3922e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 208 time: 6.0585e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 209 time: 5.265e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 210 time: 5.9643e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 211 time: 5.2119e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 212 time: 5.267e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 213 time: 4.8963e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 214 time: 5.1598e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 215 time: 4.767e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 216 time: 5.295e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 217 time: 5.237e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 218 time: 5.5345e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 219 time: 0.00162649
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 220 time: 5.4414e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 221 time: 4.9083e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 222 time: 5.2169e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 223 time: 4.9213e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 224 time: 5.6738e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 225 time: 5.7789e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 226 time: 5.3331e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 227 time: 4.8271e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 228 time: 5.4553e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 229 time: 5.0596e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 230 time: 5.1238e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 231 time: 4.7951e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 232 time: 5.4423e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 233 time: 4.7891e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:30] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:30] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:30] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x54
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 432 time: 5.3632e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 433 time: 4.8121e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 434 time: 6.4112e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 435 time: 4.9504e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 436 time: 6.2519e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 437 time: 5.1718e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 438 time: 5.297e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 439 time: 4.8281e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 440 time: 5.307e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 441 time: 4.9664e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 442 time: 5.1648e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 443 time: 4.9194e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 444 time: 5.295e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 445 time: 4.8352e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 446 time: 5.3902e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 447 time: 4.8331e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 448 time: 5.2029e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 449 time: 4.7551e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 450 time: 5.3201e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 451 time: 4.7169e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 452 time: 5.6487e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 453 time: 5.0516e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 454 time: 5.2931e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 455 time: 4.9554e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 456 time: 5.3161e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 457 time: 4.759e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 458 time: 5.1127e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 459 time: 4.8011e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 460 time: 5.3472e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 461 time: 6.0655e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 462 time: 5.2329e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 463 time: 4.9013e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 464 time: 5.6798e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 465 time: 5.4413e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 466 time: 5.4945e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 467 time: 4.9043e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 468 time: 5.304e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 469 time: 4.8262e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 470 time: 5.3502e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 471 time: 4.8472e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 472 time: 6.3079e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 473 time: 5.0085e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 474 time: 5.4613e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 475 time: 4.8462e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 476 time: 5.4222e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 477 time: 4.8031e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 478 time: 5.1277e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 479 time: 4.7881e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 480 time: 5.2108e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 481 time: 4.9624e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 482 time: 7.1095e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 483 time: 4.9184e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 484 time: 5.6618e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:31] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:31] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:31] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at ru
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1114 time: 5.4724e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1115 time: 5.0766e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1116 time: 5.7028e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1117 time: 5.0797e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1118 time: 7.869e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1119 time: 6.9241e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1120 time: 6.2859e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1121 time: 5.2209e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1122 time: 5.5656e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1123 time: 5.0455e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1124 time: 5.7309e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1125 time: 5.3341e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1126 time: 5.4323e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1127 time: 4.9523e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1128 time: 5.6487e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1129 time: 5.0095e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1130 time: 5.5245e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1131 time: 5.0246e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1132 time: 5.6698e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1133 time: 5.0295e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1134 time: 5.3121e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1135 time: 4.9174e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1136 time: 5.9884e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1137 time: 5.2109e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1138 time: 5.3421e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1139 time: 4.9073e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1140 time: 6.5745e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1141 time: 5.1667e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1142 time: 5.4603e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1143 time: 5.0966e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1144 time: 5.5756e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1145 time: 5.1628e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1146 time: 5.3732e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1147 time: 4.9724e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1148 time: 5.9793e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1149 time: 5.1929e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1150 time: 5.4794e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1151 time: 5.0987e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1152 time: 5.5184e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1153 time: 5.1097e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1154 time: 5.5656e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1155 time: 5.1538e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1156 time: 5.5926e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1157 time: 5.0476e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1158 time: 5.5856e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1159 time: 4.9313e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1160 time: 5.5465e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1161 time: 5.1498e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1162 time: 5.4754e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1163 time: 4.9875e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1164 time: 5.5235e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:33] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1165 time: 5.1498e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:33] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:33] [TRT] [W] Skipping tactic 1 due to insuficient m
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1304 time: 3.1369e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1305 time: 2.8484e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1306 time: 2.9345e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1307 time: 2.7312e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1308 time: 2.9856e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1309 time: 2.7693e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1310 time: 2.8795e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1311 time: 3.149e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1312 time: 3.0437e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1313 time: 2.7432e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1314 time: 3.0097e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1315 time: 2.7192e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1316 time: 3.1079e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1317 time: 2.8304e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1318 time: 3.2782e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1319 time: 3.2301e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1320 time: 3.5647e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1321 time: 3.2151e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1322 time: 3.4114e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1323 time: 2.8834e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1324 time: 3.0247e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1325 time: 3.3653e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1326 time: 2.9626e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1327 time: 2.8123e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1328 time: 3.0828e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1329 time: 2.8404e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1330 time: 3.0668e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1331 time: 2.7201e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1332 time: 3.0267e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1333 time: 2.7923e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1334 time: 3.0147e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1335 time: 2.7132e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1336 time: 3.0678e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1337 time: 2.7272e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1338 time: 2.9085e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1339 time: 2.7282e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1340 time: 2.9626e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1341 time: 2.7482e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1342 time: 3.0528e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1343 time: 2.7503e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1344 time: 3.2863e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1345 time: 2.7893e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1346 time: 2.9226e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1347 time: 2.7282e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1348 time: 3.0989e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1349 time: 2.7372e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1350 time: 3.0498e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1351 time: 2.7311e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1352 time: 2.9265e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1353 time: 2.7201e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1354 time: 4.4203e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1355 time: 3.2441e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:34] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:34] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:34] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
ght scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1813 time: 4.8011e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1814 time: 5.273e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1815 time: 4.8101e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1816 time: 5.4183e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1817 time: 4.744e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1818 time: 6.2759e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1819 time: 4.8261e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1820 time: 5.4293e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1821 time: 4.8361e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1822 time: 5.6938e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1823 time: 5.2369e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1824 time: 5.3071e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1825 time: 4.7981e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1826 time: 5.5506e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1827 time: 5.0917e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1828 time: 5.7569e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1829 time: 5.1638e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1830 time: 5.1838e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1831 time: 4.8923e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1832 time: 5.1778e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1833 time: 4.773e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1834 time: 5.2139e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1835 time: 4.7911e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1836 time: 5.1157e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1837 time: 5.0095e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1838 time: 5.3621e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1839 time: 4.6909e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1840 time: 5.4703e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1841 time: 4.753e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1842 time: 5.1127e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1843 time: 4.9144e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1844 time: 5.4554e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1845 time: 4.7049e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1846 time: 5.2289e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1847 time: 4.734e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1848 time: 5.5145e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1849 time: 4.9123e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1850 time: 5.1588e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1851 time: 4.7701e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1852 time: 5.7098e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:36] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:36] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:36] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1853 time: 5.244e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1854 time: 8.0293e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1855 time: 5.6828e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1856 time: 5.5345e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1857 time: 4.9103e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1858 time: 5.0615e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1859 time: 4.9995e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1860 time: 5.4454e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1861 time: 5.0436e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1862 time: 5.4975e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 ti
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
time/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1981 time: 4.9053e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1982 time: 5.2349e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1983 time: 4.724e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1984 time: 5.1788e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1985 time: 4.7641e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1986 time: 5.1688e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1987 time: 4.722e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1988 time: 5.2229e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1989 time: 4.769e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1990 time: 5.0946e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1991 time: 4.7671e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1992 time: 5.1587e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1993 time: 4.6589e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1994 time: 5.1909e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1995 time: 4.8442e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1996 time: 5.27e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1997 time: 6.1407e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1998 time: 5.2499e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 1999 time: 6.87e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2000 time: 6.0154e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2001 time: 4.8382e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2002 time: 5.2058e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2003 time: 4.76e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2004 time: 5.3822e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2005 time: 4.8932e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2006 time: 5.1968e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2007 time: 4.6909e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2008 time: 5.5425e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2009 time: 4.9454e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2010 time: 5.252e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2011 time: 4.748e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2012 time: 5.284e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2013 time: 4.8923e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2014 time: 5.0405e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2015 time: 4.6318e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2016 time: 5.307e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2017 time: 4.8202e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2018 time: 5.4333e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2019 time: 4.9654e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2020 time: 5.3611e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2021 time: 4.9604e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2022 time: 4.9894e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2023 time: 4.6939e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2024 time: 5.1437e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2025 time: 4.9664e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2026 time: 5.1388e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:37] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:37] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:37] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
ntime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2417 time: 4.8291e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2418 time: 5.3201e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2419 time: 4.778e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2420 time: 5.256e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2421 time: 4.8642e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2422 time: 5.1869e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2423 time: 4.6959e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2424 time: 5.4052e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2425 time: 6.8821e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2426 time: 5.4003e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2427 time: 4.6939e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2428 time: 5.1818e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2429 time: 5.0717e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2430 time: 5.3782e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:39] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:39] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:39] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2431 time: 5.0536e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2432 time: 5.7048e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2433 time: 4.8412e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2434 time: 5.0606e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2435 time: 4.6428e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2436 time: 5.4894e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2437 time: 5.1668e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2438 time: 5.3422e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2439 time: 4.9464e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2440 time: 5.7509e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2441 time: 5.1768e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2442 time: 5.1849e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2443 time: 6.1727e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2444 time: 6.2007e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2445 time: 6.2509e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2446 time: 5.8551e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2447 time: 4.9594e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2448 time: 5.792e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2449 time: 5.1207e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2450 time: 5.242e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2451 time: 4.8773e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2452 time: 5.3792e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2453 time: 4.8532e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2454 time: 5.3882e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2455 time: 4.8502e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2456 time: 5.4273e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2457 time: 5.1147e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2458 time: 5.2019e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2459 time: 4.9083e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2460 time: 5.5675e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2461 time: 6.5935e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2462 time: 5.5876e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2463 time: 5.0816e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2464 time: 5.5425e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2465 time: 5.0256e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2466 time: 5.3521e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2467 time: 4.8843e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2468 time: 5.7309e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2469 time: 5.1808e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2470 time: 5.4534e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2471 time: 4.9995e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weigh
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2596 time: 5.5886e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2597 time: 4.8763e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2598 time: 5.2229e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2599 time: 4.9103e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2600 time: 5.6908e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2601 time: 4.9544e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2602 time: 5.2169e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2603 time: 5.0035e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2604 time: 0.000186334
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2605 time: 3.0608e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2606 time: 3.0137e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2607 time: 2.9055e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2608 time: 2.9807e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2609 time: 2.8995e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2610 time: 2.9465e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2611 time: 2.7502e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2612 time: 3.0388e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2613 time: 2.9756e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2614 time: 2.9796e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2615 time: 3.145e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2616 time: 3.3965e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2617 time: 3.0128e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2618 time: 3.168e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2619 time: 2.9817e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2620 time: 3.1279e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2621 time: 2.8584e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2622 time: 3.2551e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2623 time: 2.8955e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2624 time: 3.4365e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2625 time: 2.9325e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2626 time: 3.1329e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2627 time: 3.1329e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2628 time: 3.1489e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2629 time: 2.8785e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2630 time: 3.5958e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2631 time: 2.9145e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2632 time: 3.2952e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2633 time: 2.9306e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2634 time: 3.4546e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2635 time: 2.8834e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2636 time: 3.196e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2637 time: 2.9385e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2638 time: 3.1259e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2639 time: 5.7189e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2640 time: 4.8732e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2641 time: 4.3943e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2642 time: 5.0846e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2643 time: 4.753e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 2644 time: 5.5505e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:40] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:40] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:40] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 1
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
nalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3054 time: 6.9742e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3055 time: 6.5384e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3056 time: 6.8429e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3057 time: 6.5635e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3058 time: 8.5863e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3059 time: 6.5935e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3060 time: 7.1405e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3061 time: 6.6306e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3062 time: 6.7888e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3063 time: 6.6325e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3064 time: 7.0022e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3065 time: 6.5574e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3066 time: 6.9422e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:42] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:42] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:42] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3067 time: 6.0084e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3068 time: 9.1975e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3069 time: 3.5507e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3070 time: 3.6469e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3071 time: 3.5437e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3072 time: 3.7441e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3073 time: 3.655e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3074 time: 3.6178e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3075 time: 3.5757e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3076 time: 3.67e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3077 time: 3.5327e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3078 time: 3.6038e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3079 time: 3.4506e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3080 time: 3.697e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3081 time: 3.5728e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3082 time: 3.5858e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3083 time: 3.4575e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3084 time: 3.7401e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3085 time: 3.5397e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3086 time: 3.6048e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3087 time: 3.5607e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3088 time: 3.7151e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3089 time: 3.6229e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3090 time: 3.7131e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3091 time: 3.6049e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3092 time: 3.9145e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3093 time: 3.5528e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3094 time: 3.7702e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3095 time: 3.5467e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3096 time: 3.8363e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3097 time: 3.5828e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3098 time: 3.694e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3099 time: 3.5568e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3100 time: 3.7892e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3101 time: 3.3334e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3102 time: 3.3914e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3103 time: 3.2111e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3104 time: 4.8593e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3105 time: 4.1198e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3106 time: 4.2561e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3211 time: 6.8901e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3212 time: 6.9181e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3213 time: 6.8631e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3214 time: 6.9752e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3215 time: 7.1135e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3216 time: 7.1225e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3217 time: 6.7728e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3218 time: 6.9342e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3219 time: 6.6436e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3220 time: 7.0594e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3221 time: 6.4793e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3222 time: 7.1966e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3223 time: 6.7669e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3224 time: 7.1034e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3225 time: 6.5745e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3226 time: 6.9141e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3227 time: 6.7799e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3228 time: 6.855e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3229 time: 7.1646e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3230 time: 6.9261e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3231 time: 6.6246e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3232 time: 7.0644e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3233 time: 6.6316e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3234 time: 6.7919e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3235 time: 6.5595e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3236 time: 7.0984e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3237 time: 6.872e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3238 time: 6.849e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3239 time: 6.2288e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3240 time: 7.3509e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3241 time: 6.6817e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3242 time: 6.8911e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3243 time: 6.5464e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3244 time: 6.6035e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:43] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:43] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:43] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3245 time: 6.0003e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3246 time: 7.3189e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3247 time: 6.6667e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3248 time: 7.1064e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3249 time: 6.8821e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3250 time: 6.893e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3251 time: 6.4763e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3252 time: 6.9572e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3253 time: 6.6927e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:44] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:44] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:44] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at 
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3606 time: 6.6587e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3607 time: 7.8038e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3608 time: 6.9812e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3609 time: 6.6807e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3610 time: 6.7678e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3611 time: 6.5164e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3612 time: 6.9912e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3613 time: 6.5344e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3614 time: 6.6426e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3615 time: 6.9181e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3616 time: 7.7357e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3617 time: 6.5805e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3618 time: 5.7899e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3619 time: 4.8812e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3620 time: 5.5225e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3621 time: 4.7771e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3622 time: 6.6165e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3623 time: 4.9103e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3624 time: 5.3612e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3625 time: 4.8321e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3626 time: 5.3661e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3627 time: 4.8292e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3628 time: 5.3181e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3629 time: 4.7951e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3630 time: 5.1688e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3631 time: 4.9233e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3632 time: 5.6166e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3633 time: 4.8612e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3634 time: 5.2079e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3635 time: 4.7691e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3636 time: 5.4854e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3637 time: 5.0205e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3638 time: 5.276e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3639 time: 6.1446e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3640 time: 5.4283e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3641 time: 4.9394e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3642 time: 5.3933e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3643 time: 4.8793e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3644 time: 5.6347e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3645 time: 4.9344e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3646 time: 6.339e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3647 time: 4.8903e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3648 time: 5.4313e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3649 time: 4.8171e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3650 time: 5.3521e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3651 time: 4.8271e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3652 time: 5.4042e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3653 time: 4.8893e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3654 time: 5.2239e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3655 time: 5.6117e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3656 time: 5.5315e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3657 time: 5.0466e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3658 time: 5.258e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3659 time: 4.8312e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3660 time: 5.4754e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3661 time: 4.8072e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weights
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3753 time: 4.9043e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3754 time: 5.3642e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3755 time: 4.8381e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3756 time: 5.3802e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3757 time: 5.0406e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3758 time: 5.3602e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3759 time: 4.8873e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3760 time: 5.4263e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3761 time: 5.0346e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3762 time: 5.5235e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3763 time: 4.8913e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3764 time: 5.3782e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3765 time: 4.9224e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3766 time: 5.1208e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3767 time: 4.7961e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3768 time: 5.4063e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3769 time: 4.7971e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3770 time: 5.1709e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3771 time: 4.8382e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3772 time: 5.4063e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3773 time: 4.8362e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3774 time: 5.3782e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3775 time: 4.8001e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3776 time: 5.5706e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3777 time: 4.9013e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3778 time: 5.3321e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3779 time: 4.8472e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3780 time: 5.7279e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:46] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:46] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:46] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3781 time: 4.8823e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3782 time: 6.1647e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3783 time: 5.7689e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3784 time: 5.5365e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3785 time: 4.9033e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3786 time: 5.2279e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3787 time: 7.7547e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3788 time: 5.7449e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3789 time: 5.0024e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3790 time: 5.3382e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3791 time: 4.8412e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3792 time: 5.6326e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3793 time: 5.0636e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 3794 time: 5.5365e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:47] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:47] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:47] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales i
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
untime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4086 time: 5.3562e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4087 time: 4.8442e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4088 time: 5.3592e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4089 time: 4.8582e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4090 time: 7.2578e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4091 time: 6.3149e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4092 time: 7.3289e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4093 time: 5.4934e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4094 time: 5.1758e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4095 time: 4.775e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4096 time: 5.3301e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4097 time: 4.8582e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4098 time: 5.1377e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4099 time: 4.8081e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4100 time: 5.4724e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4101 time: 4.8061e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4102 time: 5.1728e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4103 time: 0.000113435
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4104 time: 5.5886e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4105 time: 6.6246e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4106 time: 5.8331e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4107 time: 4.8722e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4108 time: 5.5936e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4109 time: 6.4091e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4110 time: 5.6588e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4111 time: 4.8242e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4112 time: 5.4233e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4113 time: 6.7528e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4114 time: 5.5415e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4115 time: 4.75e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4116 time: 6.7588e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4117 time: 5.5825e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4118 time: 5.7018e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4119 time: 4.8232e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4120 time: 5.7429e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4121 time: 5.9162e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4122 time: 5.3942e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4123 time: 4.8452e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4124 time: 7.0854e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4125 time: 5.4002e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4126 time: 5.297e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4127 time: 5.0406e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4128 time: 6.3411e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4129 time: 5.4604e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4130 time: 5.3532e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4131 time: 4.9244e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4132 time: 7.0433e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4133 time: 5.3371e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4134 time: 5.1829e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4135 time: 5.312e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4136 time: 5.4173e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4137 time: 5.3963e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4138 time: 5.1858e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4139 time: 7.1496e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4140 time: 6.0094e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4141 time: 5.255e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4142 time: 7.2808e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4143 time: 5.5125e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4144 time: 5.5606e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
p: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4205 time: 2.6991e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4206 time: 2.9536e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4207 time: 2.6921e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4208 time: 2.9967e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:49] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:49] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:49] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4209 time: 2.6991e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4210 time: 4.3763e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4211 time: 3.2021e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4212 time: 2.9756e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4213 time: 2.6771e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4214 time: 2.8684e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4215 time: 2.673e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4216 time: 3.0257e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4217 time: 2.7302e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4218 time: 2.8524e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4219 time: 2.671e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4220 time: 2.9686e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4221 time: 2.7863e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4222 time: 2.9777e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4223 time: 2.7222e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4224 time: 2.9346e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4225 time: 2.7131e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4226 time: 2.8945e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4227 time: 2.6811e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4228 time: 2.9536e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4229 time: 2.664e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4230 time: 2.8935e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4231 time: 2.7633e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4232 time: 2.9626e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4233 time: 2.8815e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4234 time: 2.8714e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4235 time: 2.7552e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4236 time: 3.0077e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4237 time: 2.8785e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4238 time: 2.9496e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4239 time: 2.7513e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4240 time: 3.0638e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4241 time: 2.6731e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4242 time: 2.8765e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4243 time: 2.6631e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4244 time: 3.1059e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4245 time: 2.8824e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4246 time: 7.2778e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4247 time: 5.1227e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4248 time: 5.4012e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:50] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:50] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:50] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weights
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4488 time: 3.2141e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4489 time: 2.9075e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4490 time: 3.1209e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4491 time: 2.7933e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4492 time: 0.00133285
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4493 time: 2.8845e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4494 time: 3.4265e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4495 time: 3.2692e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4496 time: 7.4381e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4497 time: 5.2861e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4498 time: 5.5255e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4499 time: 4.9814e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4500 time: 5.5826e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4501 time: 4.9393e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4502 time: 5.2489e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4503 time: 4.7911e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4504 time: 0.00189854
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4505 time: 5.82e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4506 time: 5.8842e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4507 time: 5.1117e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4508 time: 5.8651e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4509 time: 5.3041e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4510 time: 5.6927e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4511 time: 4.8883e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4512 time: 5.4504e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4513 time: 5.6788e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4514 time: 5.8341e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4515 time: 4.8262e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4516 time: 5.3371e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4517 time: 4.9615e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4518 time: 5.3391e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4519 time: 4.8843e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4520 time: 5.5866e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4521 time: 5.0756e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4522 time: 5.5405e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4523 time: 4.9433e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4524 time: 5.8672e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4525 time: 5.282e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4526 time: 5.6227e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:52] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4527 time: 5.3391e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:52] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:52] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4528 time: 4.0397e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4529 time: 2.9265e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4530 time: 3.5507e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4531 time: 3.2121e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4532 time: 3.5567e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4533 time: 3.3693e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4534 time: 2.8805e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4535 time: 2.5949e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4536 time: 2.9796e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4537 time: 2.6781e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4538 time: 2.9215e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4539 time: 2.6149e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4540 time: 2.9987e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4541 time: 2.8214e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4542 time: 2.9606e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4543 time: 2.627e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4544 time: 3.1058e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4545 time: 2.7332e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4546 time: 2.8705e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4547 time: 2.6631e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4548 time: 3.1259e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4549 time: 2.7082e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4550 time: 3.167e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4551 time: 2.6921e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4552 time: 3.0388e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4553 time: 2.7773e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4554 time: 2.8454e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4555 time: 2.6731e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4556 time: 2.9466e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4557 time: 2.6941e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4558 time: 2.8865e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4559 time: 2.673e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4560 time: 2.9115e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4561 time: 2.66e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4562 time: 2.8644e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4563 time: 0.00229548
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4564 time: 3.1199e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4565 time: 2.8053e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4566 time: 3.0247e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4567 time: 2.7422e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4568 time: 2.9877e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4569 time: 2.7121e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4570 time: 2.9085e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4571 time: 2.7312e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4572 time: 2.9646e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4573 time: 2.7382e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4574 time: 2.9626e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4575 time: 2.7011e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4576 time: 3.0077e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4577 time: 2.7111e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4578 time: 2.9566e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4579 time: 2.6951e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4580 time: 2.8754e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4581 time: 4.1359e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4582 time: 3.4736e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4583 time: 3.193e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4584 time: 3.0198e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4585 time: 2.7021e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4586 time: 2.8534e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4587 time: 2.6561e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:53] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:53] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4588 time: 3.2842e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:53] [TRT] [W] Requested amount 
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4790 time: 3.0198e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4791 time: 2.7121e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4792 time: 2.8895e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4793 time: 2.6561e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4794 time: 2.9145e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4795 time: 5.4664e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4796 time: 3.6449e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4797 time: 2.8214e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4798 time: 2.8654e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4799 time: 2.637e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4800 time: 2.9345e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4801 time: 2.627e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4802 time: 2.8754e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4803 time: 2.7542e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4804 time: 3.6119e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4805 time: 2.7873e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4806 time: 2.8404e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4807 time: 2.6981e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4808 time: 2.9405e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4809 time: 2.9175e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4810 time: 2.9365e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4811 time: 2.9596e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4812 time: 2.9075e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4813 time: 2.641e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4814 time: 2.8484e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4815 time: 2.5889e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4816 time: 2.9455e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4817 time: 2.659e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4818 time: 2.8083e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4819 time: 2.656e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4820 time: 2.9215e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4821 time: 2.8113e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4822 time: 2.9797e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4823 time: 2.6841e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4824 time: 2.8925e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4825 time: 2.6962e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4826 time: 2.8735e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4827 time: 2.6531e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4852 time: 3.0358e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4853 time: 2.7252e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4854 time: 2.8955e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4855 time: 2.626e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4856 time: 2.9706e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4857 time: 2.663e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4858 time: 2.8494e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4859 time: 2.654e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4860 time: 2.9626e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4861 time: 2.7111e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4862 time: 2.7933e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4863 time: 2.6801e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4864 time: 3.0017e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4865 time: 2.7012e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:55] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:55] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:55] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4866 time: 2.8644e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4867 time: 5.1017e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4868 time: 3.6419e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4869 time: 3.2391e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4870 time: 3.3624e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4871 time: 3.1279e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4872 time: 2.9125e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4873 time: 2.6991e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4874 time: 2.8734e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4875 time: 2.5658e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4876 time: 3.0498e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4877 time: 2.621e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4878 time: 2.8775e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4879 time: 2.5849e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4880 time: 2.9405e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4881 time: 2.603e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4882 time: 3.0598e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4883 time: 2.635e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4884 time: 2.9787e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4885 time: 2.6751e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4886 time: 2.8755e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4887 time: 2.649e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4888 time: 2.9035e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4889 time: 2.649e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4890 time: 2.9215e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4891 time: 2.656e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4892 time: 3.0157e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4893 time: 2.6881e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4894 time: 2.8284e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4895 time: 2.6269e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4896 time: 2.9826e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4897 time: 2.7782e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4898 time: 2.9005e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4899 time: 2.7182e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4900 time: 2.9867e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4901 time: 3.0458e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4902 time: 9.5982e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4903 time: 3.3313e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4904 time: 3.0077e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4905 time: 2.7532e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4906 time: 2.9145e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4907 time: 2.7142e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4908 time: 3.0949e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4909 time: 2.8073e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4910 time: 2.9035e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4911 time: 2.6971e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 4912 time: 2.9666e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:56] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:56] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:56] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
x: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5066 time: 2.8624e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5067 time: 2.65e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5068 time: 3.114e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5069 time: 2.6891e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5070 time: 2.9235e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5071 time: 2.6661e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5072 time: 2.9416e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5073 time: 2.6481e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5074 time: 3.173e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5075 time: 2.6901e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5076 time: 2.9977e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5077 time: 2.7953e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5078 time: 2.9005e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5079 time: 2.6921e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5080 time: 3.0177e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5081 time: 5.4974e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5082 time: 3.5017e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5083 time: 3.0148e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5084 time: 3.0217e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5085 time: 2.8714e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5086 time: 2.9936e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5087 time: 2.6751e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5088 time: 3.158e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5089 time: 2.7512e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5090 time: 3.0278e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5091 time: 2.7653e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5092 time: 2.9496e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5093 time: 2.606e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5094 time: 2.8784e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5095 time: 2.615e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5096 time: 2.9085e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5097 time: 2.7292e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5098 time: 2.8234e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5099 time: 2.63e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5100 time: 3.0478e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5101 time: 2.667e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5102 time: 2.9055e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5103 time: 2.6641e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5104 time: 2.8685e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5105 time: 2.6631e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5106 time: 2.8644e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 1002.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:26:58] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5107 time: 2.7182e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:26:58] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:26:58] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 0.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5897 time: 8e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x6214a720]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5895 time: 1.91e-07
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5108 time: 7.9731e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 34359738368 detected for tactic 1754569683116234317.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214a6f0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5905 time: 1.4e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5902 time: 1.3e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5109 time: 3.4195e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 34359738368 detected for tactic 1825138533642645384.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5913 time: 1.2e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x7a524050]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5910 time: 9e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5110 time: 3.3614e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 2 due to insuficient memory on requested size of 34359738368 detected for tactic 2733356012094739613.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214a6f0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5918 time: 1.1e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5921 time: 1.1e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5111 time: 3.3734e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 3 due to insuficient memory on requested size of 34359738368 detected for tactic 3915320020053085238.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214a6f0]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5929 time: 1.1e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5926 time: 9e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5112 time: 3.3283e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 4 due to insuficient memory on requested size of 34359738368 detected for tactic 6808617066150061604.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5937 time: 1.2e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x7a524050]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5934 time: 1.1e-07
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5113 time: 3.2532e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 5 due to insuficient memory on requested size of 34359738368 detected for tactic 9091006216302412844.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4d0fa0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5945 time: 1.71e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5942 time: 8e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5114 time: 3.3684e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 6 due to insuficient memory on requested size of 34359738368 detected for tactic -8060443123034038864.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5953 time: 1.2e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x7a524050]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5950 time: 1.1e-07
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5115 time: 3.2882e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 7 due to insuficient memory on requested size of 34359738368 detected for tactic -4420849921117327522.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214a6f0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5958 time: 9.1e-08
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5961 time: 1.51e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5891 time: 9e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5116 time: 3.3944e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 8 due to insuficient memory on requested size of 34359738368 detected for tactic -3946921629105938337.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4d0fa0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5991 time: 2e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5989 time: 9e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5117 time: 6.0174e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 34359738368 detected for tactic 861694390046228376.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214a6f0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 5996 time: 1.2e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 5999 time: 1.31e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5118 time: 0.00206713
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 34359738368 detected for tactic 5258189349241541167.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214a6f0]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6007 time: 1.2e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6004 time: 1.11e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5119 time: 4.1549e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 2 due to insuficient memory on requested size of 34359738368 detected for tactic 5821621277990374316.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214a6f0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6012 time: 1e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6015 time: 5.1e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5120 time: 3.3263e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 3 due to insuficient memory on requested size of 34359738368 detected for tactic 5863767799113001648.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4d0fa0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6023 time: 2.9e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6020 time: 1e-07
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5121 time: 3.4164e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 4 due to insuficient memory on requested size of 34359738368 detected for tactic -9147980667639709536.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a524d60]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6031 time: 2.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuil2023-01-16 01:27:09,330 [INFO] Extract_binaries for featurizer -> /data/models/citrinet-1024-de-DE-asr-offline-feature-extractor-streaming-offline/1
2023-01-16 01:27:09,332 [INFO] Extract_binaries for endpointing -> /data/models/citrinet-1024-de-DE-asr-offline-endpointing-streaming-offline/1
2023-01-16 01:27:09,332 [INFO] extracting {'vocab_file': '/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt'} -> /data/models/citrinet-1024-de-DE-asr-offline-endpointing-streaming-offline/1
2023-01-16 01:27:09,333 [INFO] Extract_binaries for lm_decoder -> /data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1
2023-01-16 01:27:09,333 [INFO] extracting {'vocab_file': '/tmp/tmp6s0prlz3/riva_decoder_vocabulary.txt', 'decoding_language_model_binary': '/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/riva_de_asr_set_2.0_4gram.binary', 'decoding_vocab': '/servicemaker-dev/speechtotext_de_de_lm_vdeployable_v2.0/dict_vocab.txt', 'tokenizer_model': ('nemo.collections.asr.models.ctc_bpe_models.EncDecCTCModelBPE', '292b782b41e44abd82cf8a2390b3b4ed_tokenizer.model')} -> /data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1
der.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x7a524050]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6028 time: 2.61e-07
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5122 time: 3.2912e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 5 due to insuficient memory on requested size of 34359738368 detected for tactic -8892196987859366827.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4d0fa0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6039 time: 2.1e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6036 time: 9e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5123 time: 3.4927e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 6 due to insuficient memory on requested size of 34359738368 detected for tactic -8850904373104590857.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a524d60]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6047 time: 1.5e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x7a524050]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6044 time: 7e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5124 time: 3.3193e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 7 due to insuficient memory on requested size of 34359738368 detected for tactic -8010679767156598961.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214ae90]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6055 time: 1.1e-07
[0x6214a6f0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6052 time: 8e-08
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5125 time: 3.3704e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 8 due to insuficient memory on requested size of 34359738368 detected for tactic -7751035352149795660.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a524d60]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6063 time: 1.61e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x7a524050]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6060 time: 9e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5126 time: 3.3142e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 9 due to insuficient memory on requested size of 34359738368 detected for tactic -5115676123557684531.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a521030]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6068 time: 8.1e-08
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x7a521d40]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6071 time: 1.9e-07
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5127 time: 3.662e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 10 due to insuficient memory on requested size of 34359738368 detected for tactic -493597327599791285.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4d0fa0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6079 time: 1.9e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x62149710]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6076 time: 9e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:327680 :Transformed FP32 Weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5985 time: 6e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:34359738368 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5128 time: 3.2843e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (34359738368 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 11 due to insuficient memory on requested size of 34359738368 detected for tactic -423878181466897819.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4ac980]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6173 time: 2.1e-07
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x7a481970]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6175 time: 1e-07
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5129 time: 7.0113e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 2418518597804310654.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a4826d0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6183 time: 1.71e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x7a481970]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6180 time: 1.3e-07
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5130 time: 0.00220478
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 8292881859266835088.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x7a4ad6e0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6188 time: 1.2e-07
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x7a481970]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6191 time: 2.61e-07
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5131 time: 4.2831e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 2 due to insuficient memory on requested size of 17179869184 detected for tactic 8401509141903434922.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x7a481970]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6196 time: 1.21e-07
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x7a482630]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6199 time: 1.4e-07
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5132 time: 3.4135e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 3 due to insuficient memory on requested size of 17179869184 detected for tactic -8654297089785671176.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x7a4ad6e0]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6204 time: 1.7e-07
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x7a482630]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6207 time: 1.1e-07
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5133 time: 3.3844e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 4 due to insuficient memory on requested size of 17179869184 detected for tactic -7140760933967189247.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x7a4ae3f0]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6212 time: 2.31e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x7a482630]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6215 time: 1.21e-07
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5134 time: 3.3053e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 5 due to insuficient memory on requested size of 17179869184 detected for tactic -4097850214384059472.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x7a4ad6e0]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6220 time: 1e-07
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x7a482630]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6223 time: 1.31e-07
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5135 time: 3.3183e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 6 due to insuficient memory on requested size of 17179869184 detected for tactic -3689982367035295496.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x7a4adff0]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6228 time: 1e-07
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x7a482630]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6231 time: 1.2e-07
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5136 time: 3.4536e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 7 due to insuficient memory on requested size of 17179869184 detected for tactic -2534402059426524406.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x7a4ad6e0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6236 time: 1.3e-07
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x7a482630]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6239 time: 2.61e-07
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5137 time: 3.3153e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 8 due to insuficient memory on requested size of 17179869184 detected for tactic -2027588946874785071.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x7a4855d0]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6357 time: 8e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x7a4b05e0]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6355 time: 2.01e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5138 time: 9.0511e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 0 due to insuficient memory on requested size of 17179869184 detected for tactic 2105695814191699972.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x7a4855d0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6362 time: 9.1e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x7a486800]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6365 time: 1.7e-07
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5139 time: 3.3834e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 1 due to insuficient memory on requested size of 17179869184 detected for tactic 3754069740140581927.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x7a489780]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6370 time: 1.3e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x7a486760]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6373 time: 1.91e-07
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5140 time: 3.2492e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 2 due to insuficient memory on requested size of 17179869184 detected for tactic 5666160310350604399.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a48a490]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6378 time: 2.4e-07
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x7a486760]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6381 time: 1.3e-07
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5141 time: 8.3038e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 3 due to insuficient memory on requested size of 17179869184 detected for tactic 5925270497649423688.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x7a489780]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6386 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x7a486760]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6389 time: 1.4e-07
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5142 time: 3.3944e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 4 due to insuficient memory on requested size of 17179869184 detected for tactic 6680916730816870145.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x7a486760]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6397 time: 1.31e-07
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a48a090]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6394 time: 1.4e-07
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5143 time: 3.1871e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 5 due to insuficient memory on requested size of 17179869184 detected for tactic 7158029511300006471.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4866c0]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6405 time: 2.21e-07
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x7a485530]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6402 time: 1.01e-07
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5144 time: 3.2832e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 6 due to insuficient memory on requested size of 17179869184 detected for tactic 7859952145590271433.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4866c0]:2303 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6413 time: 1.3e-07
[0x7a4896e0]:2303 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6410 time: 1e-07
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5145 time: 3.3904e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 7 due to insuficient memory on requested size of 17179869184 detected for tactic 8283847742354150423.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4866c0]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6421 time: 1.7e-07
[0x7a489ff0]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6418 time: 1.7e-07
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5146 time: 3.2121e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 8 due to insuficient memory on requested size of 17179869184 detected for tactic -8391760416076885205.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4866c0]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6429 time: 1.81e-07
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x7a485530]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6426 time: 7e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5147 time: 3.2662e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 9 due to insuficient memory on requested size of 17179869184 detected for tactic -4534876761957424274.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4896e0]:1791 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6434 time: 1.21e-07
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x7a485530]:1791 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6437 time: 1.1e-07
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5148 time: 3.2361e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 10 due to insuficient memory on requested size of 17179869184 detected for tactic -3237051169894153788.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [E] 2: [virtualMemoryBuffer.cpp::resizePhysical::161] Error Code 2: OutOfMemory (no further information)
[01/16/2023-01:27:09] [TRT] [W] -------------- The current system memory allocations dump as below --------------
[0x7a4866c0]:3327 :Cask Conv memory space reserved in cloneHostReserved: at optimizer/gpu/cask/convolutionBuilder.cpp: 1211 idx: 6445 time: 1.3e-07
[0x7a489df0]:3327 :Cask Conv memory space reserved in writeGlob: at optimizer/gpu/cask/convolutionBuilder.cpp: 1437 idx: 6442 time: 1.5e-07
[0x7a484770]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6350 time: 7e-08
[0x7a484430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6344 time: 7e-08
[0x7a484020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6338 time: 1.2e-07
[0x7a484ae0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6320 time: 2.11e-07
[0x7a482590]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6317 time: 2.41e-07
[0x7a4831b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6289 time: 7e-08
[0x7a482f70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6286 time: 1e-07
[0x62143700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6274 time: 7e-08
[0x7a481030]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6271 time: 9e-08
[0x7a4821b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6262 time: 2e-08
[0x6214b370]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6136 time: 7e-08
[0x6214b1d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6133 time: 1.2e-07
[0x6214ae90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6130 time: 2.91e-07
[0x6214ac00]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6127 time: 7e-08
[0x6214a880]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6121 time: 1.7e-07
[0x6214a2f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6118 time: 1e-07
[0x6214a580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6112 time: 3e-08
[0x62143430]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6109 time: 1.51e-07
[0x62143d50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5883 time: 9e-08
[0x7aa7eb30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5874 time: 1.2e-07
[0x7aa81080]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5862 time: 1.01e-07
[0x7aa1fa50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5856 time: 1.8e-07
[0x62140d10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5853 time: 4e-08
[0x621411f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5850 time: 2.7e-07
[0x7a442650]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5823 time: 3e-08
[0x62140e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5810 time: 8e-08
[0x62140a10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5802 time: 1e-07
[0x7a443280]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5777 time: 1.9e-07
[0x7a443070]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5774 time: 9e-08
[0x7a442470]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5799 time: 3e-08
[0x7a257ff0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5762 time: 7e-08
[0x7a441ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5756 time: 6.1e-08
[0x7a4813c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6265 time: 2e-08
[0x7a259ab0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5750 time: 5e-08
[0x7a258ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5725 time: 8e-08
[0x7a442de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5771 time: 9e-08
[0x7a258960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5722 time: 7e-08
[0x7a442ba0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5768 time: 1.71e-07
[0x7a258720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5719 time: 8e-08
[0x7a442960]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5765 time: 1.1e-07
[0x7a2584e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5716 time: 1.1e-07
[0x7a272230]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5701 time: 2.21e-07
[0x7a4445e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5698 time: 4e-08
[0x7a443d70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5692 time: 5e-08
[0x7a4442a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5652 time: 1.3e-07
[0x7a2597b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5649 time: 8e-08
[0x7a443eb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5644 time: 1.3e-07
[0x7a259bf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5636 time: 1.01e-07
[0x7a259990]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5628 time: 1.1e-07
[0x621427f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5625 time: 2.11e-07
[0x7a258de0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5728 time: 8e-08
[0x62142690]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5620 time: 2.7e-07
[0x6212a150]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5611 time: 1.51e-07
[0x61930a40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5605 time: 1.3e-07
[0x62129f80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5608 time: 2.3e-07
[0x619308a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5602 time: 1.6e-07
[0x61930560]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5596 time: 5.31e-07
[0x62129e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5593 time: 1.81e-07
[0x62129c20]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5590 time: 2.21e-07
[0x6212cf40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5587 time: 1.8e-07
[0x7a442190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5786 time: 2.8e-07
[0x7a259ee0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5584 time: 3.1e-07
[0x619326e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5575 time: 1.51e-07
[0x7a2716a0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5566 time: 1.6e-07
[0x61932900]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5563 time: 2.2e-07
[0x7a26f530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5572 time: 1.2e-07
[0x6192ed50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5560 time: 6e-08
[0x6212ad80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5557 time: 6e-08
[0x61927b80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5554 time: 5e-08
[0x6192dea0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5551 time: 1.91e-07
[0x6214b720]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5877 time: 1.3e-07
[0x61932510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 375 time: 7.1e-08
[0x62128a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 372 time: 4.1e-08
[0x6212bd70]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 367 time: 8e-08
[0x621289b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 364 time: 3e-08
[0x7a4824e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6268 time: 1.01e-07
[0x6212aec0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 359 time: 5e-08
[0x7a4845d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6347 time: 5.1e-08
[0x78e2bb60]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 356 time: 6e-08
[0x7aa86cb0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5859 time: 1e-07
[0x62142130]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5847 time: 1.41e-07
[0x61933830]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 348 time: 4e-08
[0x61932ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 335 time: 8e-08
[0x6212c330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5581 time: 1.11e-07
[0x54978290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 329 time: 6e-08
[0x549780d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 326 time: 1.4e-07
[0x62118890]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 320 time: 5.1e-08
[0x7a484f30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6329 time: 7e-08
[0x7a443700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5783 time: 1.51e-07
[0x621186f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 317 time: 6.1e-08
[0x7a484dc0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6326 time: 1.1e-07
[0x62118580]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 314 time: 6e-08
[0x62118f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 311 time: 8e-08
[0x62117a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 305 time: 8e-08
[0x7a258380]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5753 time: 8e-08
[0x621177f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 302 time: 9.1e-08
[0x7a484c50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6323 time: 1e-07
[0x62118410]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 299 time: 6.1e-08
[0x54c84ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 183 time: 8.1e-08
[0x54937a90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 121 time: 8e-08
[0x61933020]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 340 time: 5e-08
[0x5439e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 9 time: 7e-08
[0x54e81ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 218 time: 7.1e-08
[0x54691240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 113 time: 7e-08
[0x548dfb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 111 time: 8.1e-08
[0x54605e10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 50 time: 7.1e-08
[0x7a4822b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6277 time: 1e-07
[0x5490d150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 110 time: 7.1e-08
[0x549ff060]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 154 time: 8e-08
[0x548ce270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 109 time: 7.1e-08
[0x54864ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 104 time: 6e-08
[0x7a4833f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6292 time: 6e-08
[0x548ee760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 108 time: 8e-08
[0x6214a180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6115 time: 1.2e-07
[0x54869f80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 99 time: 7e-08
[0x5459af40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 97 time: 7e-08
[0x54a5fb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 168 time: 8e-08
[0x7aa866e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5868 time: 1e-07
[0x7a271870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5548 time: 1.01e-07
[0x54da7f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 216 time: 7e-08
[0x54a982d0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 237 time: 4e-08
[0x546239e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 93 time: 9e-08
[0x548038f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 88 time: 8.1e-08
[0x54876ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 98 time: 8e-08
[0x547b86d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 87 time: 7e-08
[0x62117f40]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 293 time: 7e-08
[0x54813ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 143 time: 8e-08
[0x547f21d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 86 time: 6e-08
[0x546513a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 83 time: 8e-08
[0x54f6a4a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 225 time: 9e-08
[0x621290e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5704 time: 2e-07
[0x548076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 122 time: 9e-08
[0x54655bb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 176 time: 8.1e-08
[0x7a442510]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5807 time: 1.1e-07
[0x54ec5220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 212 time: 7e-08
[0x54920b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 107 time: 7e-08
[0x546b66c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 64 time: 7.1e-08
[0x547cd600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 82 time: 6e-08
[0x61933790]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 343 time: 6e-08
[0x547ac2b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 81 time: 8e-08
[0x54f138b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 234 time: 9e-08
[0x548529b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 103 time: 5e-08
[0x5480d560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 115 time: 8e-08
[0x54bb0f60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 177 time: 7e-08
[0x62116870]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 275 time: 7e-08
[0x7a484290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6341 time: 2.31e-07
[0x7a4820c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6283 time: 6e-08
[0x54740440]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 74 time: 8e-08
[0x54712560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 75 time: 7e-08
[0x54975270]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 123 time: 8e-08
[0x54c54930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 172 time: 7e-08
[0x544847c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 73 time: 7e-08
[0x54aaea00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 147 time: 7e-08
[0x5470c5c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 68 time: 7e-08
[0x5453f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 36 time: 7e-08
[0x54ddb240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 213 time: 7.1e-08
[0x5469e9d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 62 time: 7e-08
[0x54857540]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 92 time: 8e-08
[0x5469e3d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 61 time: 8e-08
[0x6214b8c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5880 time: 9e-08
[0x549912b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 114 time: 8e-08
[0x6214aa90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6124 time: 1e-07
[0x547e7830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 90 time: 7e-08
[0x54916930]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 106 time: 7e-08
[0x54efd920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 220 time: 8e-08
[0x5495f470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 135 time: 8.1e-08
[0x54dba9e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 192 time: 8e-08
[0x545817c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 44 time: 8.1e-08
[0x7a259040]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6103 time: 3.3e-07
[0x7a4434c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5780 time: 1.3e-07
[0x5476f680]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 166 time: 8e-08
[0x5444d4b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 23 time: 7e-08
[0x5482e280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 219 time: 8e-08
[0x621406d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5794 time: 4e-08
[0x546c8700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 69 time: 8e-08
[0x54a48280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 145 time: 8e-08
[0x5456c830]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 39 time: 7e-08
[0x54e32ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 201 time: 8e-08
[0x545e1700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 47 time: 8e-08
[0x54f37bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 235 time: 8e-08
[0x546aeac0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 63 time: 8.1e-08
[0x621408d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6106 time: 1.51e-07
[0x54960220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 136 time: 8e-08
[0x5438f7e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 5 time: 7e-08
[0x54d23080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 181 time: 7e-08
[0x54b11f90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 182 time: 1.4e-07
[0x543450d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 1 time: 4e-08
[0x54668190]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 76 time: 7e-08
[0x54c8f1f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 169 time: 7e-08
[0x544b7810]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 28 time: 7e-08
[0x7aa7b1e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5871 time: 1.6e-07
[0x54420800]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 18 time: 8e-08
[0x54cc61d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 194 time: 9e-08
[0x54f8ee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 230 time: 7e-08
[0x62128e50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5747 time: 1e-07
[0x54419560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 15 time: 8e-08
[0x62141290]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5818 time: 3e-08
[0x5435a0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 21 time: 7e-08
[0x54374de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 2 time: 8.1e-08
[0x54b14170]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 146 time: 8e-08
[0x54982910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 116 time: 8e-08
[0x54c27330]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 162 time: 8e-08
[0x54f8f980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 229 time: 7e-08
[0x54380ad0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 3 time: 8e-08
[0x6212bc80]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5569 time: 1.2e-07
[0x543e10d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 35 time: 7e-08
[0x543ef980]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 16 time: 8e-08
[0x62116e30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 281 time: 8.1e-08
[0x54975df0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 126 time: 7e-08
[0x547016d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 70 time: 7e-08
[0x54651b40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 66 time: 7e-08
[0x54792f40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 202 time: 8.1e-08
[0x5438bcb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 4 time: 8e-08
[0x54661280]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 60 time: 7e-08
[0x54339840]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 32 time: 8.1e-08
[0x543accd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 10 time: 8e-08
[0x54422490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 27 time: 9e-08
[0x548e6080]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 101 time: 7.1e-08
[0x54a58790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 137 time: 7e-08
[0x5455ca90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 38 time: 7e-08
[0x54b387f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 150 time: 8e-08
[0x54949650]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 153 time: 8e-08
[0x54af22a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 160 time: 8e-08
[0x543973b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 7 time: 8e-08
[0x545f41e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 48 time: 7e-08
[0x543d0c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 13 time: 8.1e-08
[0x54f6d580]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 227 time: 8e-08
[0x54406490]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 29 time: 8e-08
[0x5437f240]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 8 time: 8e-08
[0x62142270]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5617 time: 2.41e-07
[0x54974c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 124 time: 7e-08
[0x545e3d10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 56 time: 8e-08
[0x6214a620]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6100 time: 8e-08
[0x6212aaf0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 351 time: 6e-08
[0x549178c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 112 time: 8e-08
[0x546ebec0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 67 time: 8e-08
[0x544fcff0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 33 time: 7e-08
[0x5469f230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 72 time: 8.1e-08
[0x5461c1d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 196 time: 8e-08
[0x54b6a6a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 195 time: 8e-08
[0x54e2a230]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 226 time: 1e-07
[0x548bd6e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 105 time: 7.1e-08
[0x54cfd990]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 203 time: 1.01e-07
[0x54614c80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 55 time: 8e-08
[0x54444f10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 40 time: 7e-08
[0x54a29d00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 132 time: 8e-08
[0x54415ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 14 time: 7e-08
[0x5442b350]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 22 time: 8e-08
[0x544e74a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 31 time: 7e-08
[0x543d12b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 11 time: 7e-08
[0x547f53a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 102 time: 8e-08
[0x5448b9b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 65 time: 8e-08
[0x6212c190]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5578 time: 1.5e-07
[0x544032e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 34 time: 8e-08
[0x544076a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 30 time: 8e-08
[0x54349720]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 0 time: 8e-08
[0x61930700]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5599 time: 1.81e-07
[0x544052d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 53 time: 8e-08
[0x54a79d90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 167 time: 8e-08
[0x5446b760]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 26 time: 7e-08
[0x549b1ee0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 118 time: 8.1e-08
[0x54b84600]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 170 time: 8e-08
[0x54c66410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 187 time: 7e-08
[0x54763140]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 79 time: 8e-08
[0x544e0a40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 37 time: 7e-08
[0x62116ce0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 278 time: 2.1e-07
[0x547fc2d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 100 time: 7e-08
[0x54397e90]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 6 time: 7e-08
[0x544f4aa0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 45 time: 7e-08
[0x545fcb10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 49 time: 7e-08
[0x62143ef0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5886 time: 7e-08
[0x5480b0d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 89 time: 8e-08
[0x62136600]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 257 time: 1.2e-07
[0x7a259850]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5657 time: 5e-08
[0x62149670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5542 time: 1.2e-07
[0x54734bd0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 78 time: 9e-08
[0x544f7410]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 46 time: 7e-08
[0x5457cb40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 42 time: 7e-08
[0x54b2d5f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 158 time: 1.6e-07
[0x7a4425b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5815 time: 7e-08
[0x54613e30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 52 time: 7e-08
[0x54999ed0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 119 time: 8e-08
[0x7a4818d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6259 time: 3e-08
[0x545deda0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 54 time: 8e-08
[0x547e61e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 85 time: 8e-08
[0x54e5f910]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 217 time: 7e-08
[0x54f068e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 215 time: 8.1e-08
[0x546ed6d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 77 time: 7e-08
[0x544823c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 58 time: 7e-08
[0x621292f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5707 time: 1.11e-07
[0x546d9590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 91 time: 8e-08
[0x54a17de0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 138 time: 8e-08
[0x54e5dbb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 207 time: 7e-08
[0x54f7f400]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 228 time: 8e-08
[0x548b6c30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 128 time: 7e-08
[0x549a93f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 125 time: 8e-08
[0x54a4e150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 129 time: 8e-08
[0x54c57070]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 231 time: 8e-08
[0x54b2af10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 161 time: 7e-08
[0x5450a8f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 94 time: 7e-08
[0x5446c100]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 57 time: 8e-08
[0x547582a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 130 time: 8e-08
[0x54e47120]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 206 time: 9e-08
[0x54d4c200]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 186 time: 7.1e-08
[0x54a24da0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 131 time: 8e-08
[0x7a444160]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5695 time: 6.1e-08
[0x54a168f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 133 time: 7e-08
[0x7a4422f0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5791 time: 2.01e-07
[0x6212a330]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5614 time: 1.41e-07
[0x54a2e040]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 134 time: 1.4e-07
[0x62118180]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 296 time: 8e-08
[0x546610a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 59 time: 7.1e-08
[0x546a6c70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 71 time: 8e-08
[0x54a59870]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 139 time: 7e-08
[0x54adc700]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 141 time: 7e-08
[0x7a483e10]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6335 time: 1.6e-07
[0x54aee820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 151 time: 1.5e-07
[0x7a483630]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6295 time: 6.1e-08
[0x54a86770]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 142 time: 8e-08
[0x54ab8e40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 144 time: 8e-08
[0x54757890]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 84 time: 8e-08
[0x54affb80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 148 time: 8e-08
[0x7a271a50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5545 time: 6e-08
[0x543b3790]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 20 time: 7e-08
[0x546076b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 51 time: 8e-08
[0x5495d2f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 149 time: 9e-08
[0x54b712a0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 152 time: 7e-08
[0x7a480f90]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6314 time: 5e-08
[0x546b5d40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 96 time: 7.1e-08
[0x543c1460]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 19 time: 7e-08
[0x54b40220]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 155 time: 7e-08
[0x54baaeb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 156 time: 8e-08
[0x54481640]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 24 time: 8e-08
[0x54b98b30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 157 time: 7e-08
[0x543fcea0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 25 time: 8e-08
[0x54ca5bf0]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 236 time: 2.1e-07
[0x54658e80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 159 time: 7e-08
[0x54f13090]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 221 time: 7e-08
[0x549acf30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 163 time: 7e-08
[0x54c3b0c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 164 time: 8e-08
[0x54d43130]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 188 time: 7e-08
[0x7a259710]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5641 time: 1.3e-07
[0x54da0cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 222 time: 5e-08
[0x54c28a10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 165 time: 8e-08
[0x54c54ae0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 171 time: 8e-08
[0x7a481a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6280 time: 7e-08
[0x7a257f50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5759 time: 6e-08
[0x549bbf40]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 173 time: 6e-08
[0x6212a9b0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 380 time: 4e-08
[0x549e03b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 174 time: 9.1e-08
[0x54d77cb0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 197 time: 1e-07
[0x547ffc80]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 127 time: 8e-08
[0x54d15900]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 178 time: 5e-08
[0x6203ce50]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 251 time: 8e-08
[0x62129740]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5713 time: 1.4e-07
[0x545cd3b0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 179 time: 9e-08
[0x62116aa0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 263 time: 9e-08
[0x549784d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 332 time: 5e-08
[0x54b6f430]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 180 time: 8e-08
[0x5498df20]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 117 time: 8e-08
[0x54bcaa50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 184 time: 7e-08
[0x54adee30]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 140 time: 8e-08
[0x621363c0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 254 time: 1.3e-07
[0x54ca6160]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 189 time: 8e-08
[0x548a7510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 120 time: 7e-08
[0x54c77a70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 191 time: 7.1e-08
[0x54d2f820]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 190 time: 8e-08
[0x7aa7b660]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5865 time: 7e-08
[0x54b16470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 193 time: 7e-08
[0x54d64af0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 198 time: 8e-08
[0x62118db0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 308 time: 1.1e-07
[0x54cd60e0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 199 time: 8.1e-08
[0x54e20470]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 200 time: 8e-08
[0x5456e530]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 43 time: 8e-08
[0x54e3b150]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 204 time: 9e-08
[0x54de5e50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 205 time: 7e-08
[0x62118a30]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 323 time: 7e-08
[0x54de4560]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 208 time: 7e-08
[0x54ea0590]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 209 time: 9e-08
[0x54b003d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 210 time: 9e-08
[0x62129500]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5710 time: 1.4e-07
[0x5451db00]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 41 time: 8.1e-08
[0x54a70c10]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 211 time: 8e-08
[0x54ede510]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 214 time: 8e-08
[0x54c5af50]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 223 time: 8e-08
[0x54415300]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 17 time: 8e-08
[0x54f667f0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 224 time: 8e-08
[0x54e91e60]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 232 time: 7e-08
[0x7a259670]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 5633 time: 9e-08
[0x543fc710]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 12 time: 6e-08
[0x54f937d0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 233 time: 8e-08
[0x54d41920]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 185 time: 8e-08
[0x54c8df10]:4 :Cudnn Builder const weights in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 238 time: 3e-08
[0x62136840]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 260 time: 1e-07
[0x54777e70]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 95 time: 7e-08
[0x62116390]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 266 time: 1.7e-07
[0x62116530]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 269 time: 8e-08
[0x7a4850e0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 6332 time: 8e-08
[0x621166d0]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 272 time: 8e-08
[0x54a77ce0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 175 time: 9e-08
[0x62117010]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 284 time: 6e-08
[0x547727c0]:4 :: weight scales in internalAllocate: at runtime/common/weightsPtr.cpp: 100 idx: 80 time: 8e-08
[0x62117250]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 287 time: 6e-08
[0x62117490]:151 :ScratchObject in storeCachedObject: at optimizer/gpu/cudnn/convolutionBuilder.cpp: 168 idx: 290 time: 5e-08
-------------- The current device memory allocations dump as below --------------
[0]:17179869184 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 246 idx: 5149 time: 3.3123e-05
[0x402000000]:8847884288 :HybridGlobWriter in reserveRegion: at optimizer/common/globWriter.cpp: 224 idx: 15 time: 0.00253773
[0x7f334e000000]:4795483136 :DeviceActivationSize in reserveNetworkTensorMemory: at optimizer/common/tactic/optimizer.cpp: 4603 idx: 8 time: 0.00274538
[01/16/2023-01:27:09] [TRT] [W] Requested amount of GPU memory (17179869184 bytes) could not be allocated. There may not be enough free memory for allocation to succeed.
[01/16/2023-01:27:09] [TRT] [W] Skipping tactic 11 due to insuficient memory on requested size of 17179869184 detected for tactic -2422160065350346448.
Try decreasing the workspace size with IBuilderConfig::setMaxWorkspaceSize().
[01/16/2023-01:27:09] [TRT] [E] 10: [optimizer.cpp::computeCosts::2011] Error Code 10: Internal Error (Could not find any implementation for node Conv_4.)
[01/16/2023-01:27:09] [TRT] [E] 2: [builder.cpp::buildSerializedNetwork::609] Error Code 2: Internal Error (Assertion enginePtr != nullptr failed. )
2023-01-16 01:27:10,136 [INFO] {'vocab_file': '/data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1/riva_decoder_vocabulary.txt', 'decoding_language_model_binary': '/data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1/riva_de_asr_set_2.0_4gram.binary', 'decoding_vocab': '/data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1/dict_vocab.txt', 'tokenizer_model': '/data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1/292b782b41e44abd82cf8a2390b3b4ed_tokenizer.model'}
2023-01-16 01:27:10,136 [INFO] Model config has vocab file and tokenizer specified. Will create subword lexicon file from  vocab_file /data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1/dict_vocab.txt and tokenizer model /data/models/citrinet-1024-de-DE-asr-offline-ctc-decoder-cpu-streaming-offline/1/292b782b41e44abd82cf8a2390b3b4ed_tokenizer.model
2023-01-16 01:27:10,218 [INFO] processed 10000 lines
2023-01-16 01:27:10,299 [INFO] processed 20000 lines
2023-01-16 01:27:10,379 [INFO] processed 30000 lines
2023-01-16 01:27:10,460 [INFO] processed 40000 lines
2023-01-16 01:27:10,541 [INFO] processed 50000 lines
2023-01-16 01:27:10,630 [INFO] processed 60000 lines
2023-01-16 01:27:10,712 [INFO] processed 70000 lines
2023-01-16 01:27:10,793 [INFO] processed 80000 lines
2023-01-16 01:27:10,874 [INFO] processed 90000 lines
2023-01-16 01:27:10,955 [INFO] processed 100000 lines
2023-01-16 01:27:11,037 [INFO] processed 110000 lines
2023-01-16 01:27:11,118 [INFO] processed 120000 lines
2023-01-16 01:27:11,200 [INFO] processed 130000 lines
2023-01-16 01:27:11,281 [INFO] processed 140000 lines
2023-01-16 01:27:11,361 [INFO] processed 150000 lines
2023-01-16 01:27:11,442 [INFO] processed 160000 lines
2023-01-16 01:27:11,522 [INFO] processed 170000 lines
2023-01-16 01:27:11,602 [INFO] processed 180000 lines
2023-01-16 01:27:11,682 [INFO] processed 190000 lines
2023-01-16 01:27:11,763 [INFO] processed 200000 lines
2023-01-16 01:27:11,842 [INFO] processed 210000 lines
2023-01-16 01:27:11,923 [INFO] processed 220000 lines
2023-01-16 01:27:12,003 [INFO] processed 230000 lines
2023-01-16 01:27:12,083 [INFO] processed 240000 lines
2023-01-16 01:27:12,163 [INFO] processed 250000 lines
2023-01-16 01:27:12,243 [INFO] processed 260000 lines
2023-01-16 01:27:12,323 [INFO] processed 270000 lines
2023-01-16 01:27:12,403 [INFO] processed 280000 lines
2023-01-16 01:27:12,483 [INFO] processed 290000 lines
2023-01-16 01:27:12,563 [INFO] processed 300000 lines
2023-01-16 01:27:12,642 [INFO] processed 310000 lines
2023-01-16 01:27:12,722 [INFO] processed 320000 lines
2023-01-16 01:27:12,802 [INFO] processed 330000 lines
2023-01-16 01:27:12,881 [INFO] processed 340000 lines
2023-01-16 01:27:12,961 [INFO] processed 350000 lines
2023-01-16 01:27:13,040 [INFO] processed 360000 lines
2023-01-16 01:27:13,120 [INFO] processed 370000 lines
2023-01-16 01:27:13,199 [INFO] processed 380000 lines
2023-01-16 01:27:13,280 [INFO] processed 390000 lines
2023-01-16 01:27:13,361 [INFO] processed 400000 lines
2023-01-16 01:27:13,442 [INFO] processed 410000 lines
2023-01-16 01:27:13,524 [INFO] processed 420000 lines
2023-01-16 01:27:13,604 [INFO] processed 430000 lines
2023-01-16 01:27:13,684 [INFO] processed 440000 lines
2023-01-16 01:27:13,764 [INFO] processed 450000 lines
2023-01-16 01:27:13,843 [INFO] processed 460000 lines
2023-01-16 01:27:13,923 [INFO] processed 470000 lines
2023-01-16 01:27:14,002 [INFO] processed 480000 lines
2023-01-16 01:27:14,082 [INFO] processed 490000 lines
2023-01-16 01:27:14,162 [INFO] processed 500000 lines
2023-01-16 01:27:14,241 [INFO] processed 510000 lines
2023-01-16 01:27:14,321 [INFO] processed 520000 lines
2023-01-16 01:27:14,401 [INFO] processed 530000 lines
2023-01-16 01:27:14,480 [INFO] processed 540000 lines
2023-01-16 01:27:14,560 [INFO] processed 550000 lines
2023-01-16 01:27:14,639 [INFO] processed 560000 lines
2023-01-16 01:27:14,719 [INFO] processed 570000 lines
2023-01-16 01:27:14,799 [INFO] processed 580000 lines
2023-01-16 01:27:14,878 [INFO] processed 590000 lines
2023-01-16 01:27:14,958 [INFO] processed 600000 lines
2023-01-16 01:27:15,038 [INFO] processed 610000 lines
2023-01-16 01:27:15,118 [INFO] processed 620000 lines
2023-01-16 01:27:15,197 [INFO] processed 630000 lines
2023-01-16 01:27:15,277 [INFO] processed 640000 lines
2023-01-16 01:27:15,356 [INFO] processed 650000 lines
2023-01-16 01:27:15,436 [INFO] processed 660000 lines
2023-01-16 01:27:15,516 [INFO] processed 670000 lines
2023-01-16 01:27:15,598 [INFO] processed 680000 lines
2023-01-16 01:27:15,679 [INFO] processed 690000 lines
2023-01-16 01:27:15,760 [INFO] processed 700000 lines
2023-01-16 01:27:15,841 [INFO] processed 710000 lines
2023-01-16 01:27:15,921 [INFO] processed 720000 lines
2023-01-16 01:27:16,001 [INFO] processed 730000 lines
2023-01-16 01:27:16,086 [INFO] processed 740000 lines
2023-01-16 01:27:16,166 [INFO] processed 750000 lines
2023-01-16 01:27:16,246 [INFO] processed 760000 lines
2023-01-16 01:27:16,326 [INFO] processed 770000 lines
2023-01-16 01:27:16,405 [INFO] processed 780000 lines
2023-01-16 01:27:16,485 [INFO] processed 790000 lines
2023-01-16 01:27:16,564 [INFO] processed 800000 lines
2023-01-16 01:27:16,644 [INFO] processed 810000 lines
2023-01-16 01:27:16,724 [INFO] processed 820000 lines
2023-01-16 01:27:16,803 [INFO] processed 830000 lines
2023-01-16 01:27:16,883 [INFO] processed 840000 lines
2023-01-16 01:27:16,963 [INFO] processed 850000 lines
2023-01-16 01:27:17,043 [INFO] processed 860000 lines
2023-01-16 01:27:17,122 [INFO] processed 870000 lines
2023-01-16 01:27:17,202 [INFO] processed 880000 lines
2023-01-16 01:27:17,282 [INFO] processed 890000 lines
2023-01-16 01:27:17,361 [INFO] processed 900000 lines
2023-01-16 01:27:17,441 [INFO] processed 910000 lines
2023-01-16 01:27:17,520 [INFO] processed 920000 lines
2023-01-16 01:27:17,600 [INFO] processed 930000 lines
2023-01-16 01:27:17,680 [INFO] processed 940000 lines
2023-01-16 01:27:17,760 [INFO] processed 950000 lines
2023-01-16 01:27:17,841 [INFO] processed 960000 lines
2023-01-16 01:27:17,922 [INFO] processed 970000 lines
2023-01-16 01:27:18,003 [INFO] processed 980000 lines
2023-01-16 01:27:18,083 [INFO] processed 990000 lines
2023-01-16 01:27:18,164 [INFO] processed 1000000 lines
2023-01-16 01:27:18,243 [INFO] processed 1010000 lines
2023-01-16 01:27:18,323 [INFO] processed 1020000 lines
2023-01-16 01:27:18,403 [INFO] processed 1030000 lines
2023-01-16 01:27:18,482 [INFO] processed 1040000 lines
2023-01-16 01:27:18,562 [INFO] processed 1050000 lines
2023-01-16 01:27:18,641 [INFO] processed 1060000 lines
2023-01-16 01:27:18,720 [INFO] processed 1070000 lines
2023-01-16 01:27:18,800 [INFO] processed 1080000 lines
2023-01-16 01:27:18,879 [INFO] processed 1090000 lines
2023-01-16 01:27:18,959 [INFO] processed 1100000 lines
2023-01-16 01:27:19,038 [INFO] processed 1110000 lines
2023-01-16 01:27:19,118 [INFO] processed 1120000 lines
2023-01-16 01:27:19,198 [INFO] processed 1130000 lines
2023-01-16 01:27:19,278 [INFO] processed 1140000 lines
2023-01-16 01:27:19,357 [INFO] processed 1150000 lines
2023-01-16 01:27:19,437 [INFO] processed 1160000 lines
2023-01-16 01:27:19,517 [INFO] processed 1170000 lines
2023-01-16 01:27:19,597 [INFO] processed 1180000 lines
2023-01-16 01:27:19,680 [INFO] processed 1190000 lines
2023-01-16 01:27:19,760 [INFO] processed 1200000 lines
2023-01-16 01:27:19,839 [INFO] processed 1210000 lines
2023-01-16 01:27:19,919 [INFO] processed 1220000 lines
2023-01-16 01:27:19,999 [INFO] processed 1230000 lines
2023-01-16 01:27:20,080 [INFO] processed 1240000 lines
2023-01-16 01:27:20,162 [INFO] processed 1250000 lines
2023-01-16 01:27:20,243 [INFO] processed 1260000 lines
2023-01-16 01:27:20,323 [INFO] processed 1270000 lines
2023-01-16 01:27:20,403 [INFO] processed 1280000 lines
2023-01-16 01:27:20,483 [INFO] processed 1290000 lines
2023-01-16 01:27:20,566 [INFO] processed 1300000 lines
2023-01-16 01:27:20,645 [INFO] processed 1310000 lines
2023-01-16 01:27:20,725 [INFO] processed 1320000 lines
2023-01-16 01:27:20,805 [INFO] processed 1330000 lines
2023-01-16 01:27:20,884 [INFO] processed 1340000 lines
2023-01-16 01:27:20,963 [INFO] processed 1350000 lines
2023-01-16 01:27:21,043 [INFO] processed 1360000 lines
2023-01-16 01:27:21,123 [INFO] processed 1370000 lines
2023-01-16 01:27:21,202 [INFO] processed 1380000 lines
2023-01-16 01:27:21,282 [INFO] processed 1390000 lines
2023-01-16 01:27:21,362 [INFO] processed 1400000 lines
2023-01-16 01:27:21,441 [INFO] processed 1410000 lines
2023-01-16 01:27:21,521 [INFO] processed 1420000 lines
2023-01-16 01:27:21,600 [INFO] processed 1430000 lines
2023-01-16 01:27:21,680 [INFO] processed 1440000 lines
2023-01-16 01:27:21,759 [INFO] processed 1450000 lines
2023-01-16 01:27:21,839 [INFO] processed 1460000 lines
2023-01-16 01:27:21,919 [INFO] processed 1470000 lines
2023-01-16 01:27:21,999 [INFO] processed 1480000 lines
2023-01-16 01:27:22,078 [INFO] processed 1490000 lines
2023-01-16 01:27:22,158 [INFO] processed 1500000 lines
2023-01-16 01:27:22,238 [INFO] processed 1510000 lines
2023-01-16 01:27:22,319 [INFO] processed 1520000 lines
2023-01-16 01:27:22,400 [INFO] processed 1530000 lines
2023-01-16 01:27:22,481 [INFO] processed 1540000 lines
2023-01-16 01:27:22,562 [INFO] processed 1550000 lines
2023-01-16 01:27:22,642 [INFO] processed 1560000 lines
2023-01-16 01:27:22,722 [INFO] processed 1570000 lines
2023-01-16 01:27:22,801 [INFO] processed 1580000 lines
2023-01-16 01:27:22,881 [INFO] processed 1590000 lines
2023-01-16 01:27:22,961 [INFO] processed 1600000 lines
2023-01-16 01:27:23,041 [INFO] processed 1610000 lines
2023-01-16 01:27:23,121 [INFO] processed 1620000 lines
2023-01-16 01:27:23,201 [INFO] processed 1630000 lines
2023-01-16 01:27:23,280 [INFO] processed 1640000 lines
2023-01-16 01:27:23,360 [INFO] processed 1650000 lines
2023-01-16 01:27:23,440 [INFO] processed 1660000 lines
2023-01-16 01:27:23,520 [INFO] processed 1670000 lines
2023-01-16 01:27:23,600 [INFO] processed 1680000 lines
2023-01-16 01:27:23,679 [INFO] processed 1690000 lines
2023-01-16 01:27:23,760 [INFO] processed 1700000 lines
2023-01-16 01:27:23,840 [INFO] processed 1710000 lines
2023-01-16 01:27:23,920 [INFO] processed 1720000 lines
2023-01-16 01:27:24,000 [INFO] processed 1730000 lines
2023-01-16 01:27:24,080 [INFO] processed 1740000 lines
2023-01-16 01:27:24,161 [INFO] processed 1750000 lines
2023-01-16 01:27:24,242 [INFO] processed 1760000 lines
2023-01-16 01:27:24,322 [INFO] processed 1770000 lines
2023-01-16 01:27:24,403 [INFO] processed 1780000 lines
2023-01-16 01:27:24,484 [INFO] processed 1790000 lines
2023-01-16 01:27:24,565 [INFO] processed 1800000 lines
2023-01-16 01:27:24,647 [INFO] processed 1810000 lines
2023-01-16 01:27:24,728 [INFO] processed 1820000 lines
2023-01-16 01:27:24,809 [INFO] processed 1830000 lines
2023-01-16 01:27:24,889 [INFO] processed 1840000 lines
2023-01-16 01:27:24,969 [INFO] processed 1850000 lines
2023-01-16 01:27:25,050 [INFO] processed 1860000 lines
2023-01-16 01:27:25,130 [INFO] processed 1870000 lines
2023-01-16 01:27:25,210 [INFO] processed 1880000 lines
2023-01-16 01:27:25,290 [INFO] processed 1890000 lines
2023-01-16 01:27:25,371 [INFO] processed 1900000 lines
2023-01-16 01:27:25,451 [INFO] processed 1910000 lines
2023-01-16 01:27:25,531 [INFO] processed 1920000 lines
2023-01-16 01:27:25,611 [INFO] processed 1930000 lines
2023-01-16 01:27:25,690 [INFO] processed 1940000 lines
2023-01-16 01:27:25,771 [INFO] processed 1950000 lines
2023-01-16 01:27:25,851 [INFO] processed 1960000 lines
2023-01-16 01:27:25,931 [INFO] processed 1970000 lines
2023-01-16 01:27:26,011 [INFO] processed 1980000 lines
2023-01-16 01:27:26,095 [INFO] processed 1990000 lines
2023-01-16 01:27:26,175 [INFO] processed 2000000 lines
2023-01-16 01:27:26,255 [INFO] processed 2010000 lines
2023-01-16 01:27:26,334 [INFO] processed 2020000 lines
2023-01-16 01:27:26,414 [INFO] processed 2030000 lines
2023-01-16 01:27:26,494 [INFO] processed 2040000 lines
2023-01-16 01:27:26,573 [INFO] processed 2050000 lines
2023-01-16 01:27:26,653 [INFO] processed 2060000 lines
2023-01-16 01:27:26,733 [INFO] processed 2070000 lines
2023-01-16 01:27:26,816 [INFO] processed 2080000 lines
2023-01-16 01:27:26,899 [INFO] processed 2090000 lines
2023-01-16 01:27:26,980 [INFO] processed 2100000 lines
2023-01-16 01:27:27,060 [INFO] processed 2110000 lines
2023-01-16 01:27:27,141 [INFO] processed 2120000 lines

Build and deploy and punctuation and capitalization model#

When doing ASR, the Riva server will look for a punctuator model that matches the language in the ASR request config. The punctuator model can be built and deployed with:

!docker run --gpus all --rm \
     -v $RIVA_MODEL_DIR:/servicemaker-dev \
     -v $RIVA_REPO_DIR:/data \
     nvcr.io/nvidia/riva/riva-speech:$RIVA_VERSION-servicemaker \
     -- \
     riva-build punctuation -f \
     /servicemaker-dev/de_punctuation_1_0.rmir  \
     /servicemaker-dev/punctuationcapitalization_de_de_bert_base_vdeployable_v1.0/de_punctuation_1_0.riva --language_code=de-DE
!docker run --gpus all --rm \
     -v $RIVA_MODEL_DIR:/servicemaker-dev \
     -v $RIVA_REPO_DIR:/data \
     nvcr.io/nvidia/riva/riva-speech:$RIVA_VERSION-servicemaker \
     -- \
     riva-deploy -f /servicemaker-dev/de_punctuation_1_0.rmir /data/models 

Start Riva server#

That concludes the building and deployment of the Riva German ASR service. Now you can start the Riva server.

!bash $RIVA_QUICKSTART_DIR/riva_start.sh